home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / vopl / hershey.lha / hershey / src / check.c next >
Encoding:
C/C++ Source or Header  |  1991-09-02  |  256 b   |  19 lines

  1. #include <stdio.h>
  2.  
  3. extern int    hLoaded;
  4.  
  5. /*
  6.  * check_loaded
  7.  *
  8.  *     Checks and prints out a message if the font isn't loaded.
  9.  */
  10. void
  11. check_loaded(who)
  12.     char    *who;
  13. {
  14.     if (!hLoaded) {
  15.         fprintf(stderr, "%s: no hershey font loaded.\n", who);
  16.         exit(1);
  17.     }
  18. }
  19.